
   .brand-group {
  display: flex;
  align-items: center;
  gap: 18px;           /* space between name and icons */
  flex-wrap: wrap;     /* if screen is narrow, icons wrap below */
}

.company-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  white-space: nowrap; /* keep name on one line until it must wrap */
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;           /* gap between each icon */
  flex-shrink: 0;      /* stops icons from shrinking if name grows */
}

.social-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
  .social-icons img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
  }

.social-icons img:hover {
  transform: scale(1.1);
}

.gallery-section {
  text-align: center;
  padding: 40px 20px;
  background: #f5f5f5;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.gallery-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  margin-right: 15px; /* add space between images */
}

/* Remove margin on the last image to avoid extra trailing space */
.gallery-track img:last-child {
  margin-right: 0;
}


.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5em;
  z-index: 10;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

@media (max-width: 768px) {
  .gallery-track img {
    width: 200px;
    height: 150px;
    margin-right: 12px;
  }
  .gallery-track img:last-child {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .gallery-track img {
    width: 150px;
    height: 120px;
    margin-right: 10px;
  }
  .gallery-track img:last-child {
    margin-right: 0;
  }
}
